| Language documentation | Contents | Index |
| continue is used within looping structures to skip the rest of the current loop iteration and continue execution at the beginning of the next iteration. |
var i=0;
while (true) {
if (i==0)
continue; // avoid division by zero
var x=1/i;
i++;
if (i==10)
break;
}
|
| Documented by Eduard Suica, generation time: Sun Jan 27 18:15:22 2013 GMT | (c)2013 Devronium Applications |